type golang.org/x/net/http2.responseWriterState

12 uses

	golang.org/x/net/http2 (current package)
		server.go#L79: 		rws := &responseWriterState{}
		server.go#L2231: 	rws := responseWriterStatePool.Get().(*responseWriterState)
		server.go#L2233: 	*rws = responseWriterState{} // zero all the fields
		server.go#L2478: 	rws *responseWriterState
		server.go#L2488: type responseWriterState struct {
		server.go#L2513: type chunkWriter struct{ rws *responseWriterState }
		server.go#L2525: func (rws *responseWriterState) hasTrailers() bool { return len(rws.trailers) > 0 }
		server.go#L2527: func (rws *responseWriterState) hasNonemptyTrailers() bool {
		server.go#L2539: func (rws *responseWriterState) declareTrailer(k string) {
		server.go#L2557: func (rws *responseWriterState) writeChunk(p []byte) (n int, err error) {
		server.go#L2681: func (rws *responseWriterState) promoteUndeclaredTrailers() {
		server.go#L2840: func (rws *responseWriterState) writeHeader(code int) {